home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 March / PCWorld_2008-03_cd.bin / v cisle / mobiDVD / MobiDVD-1.0.0.6.exe / xulrunner / components / nsProxyAutoConfig.js < prev    next >
Text File  |  2007-07-12  |  14KB  |  405 lines

  1. /* -*- Mode: Java; tab-width: 4; c-basic-offset: 4; -*- */
  2. /* vim:set ts=4 sw=4 sts=4 et: */
  3. /* ***** BEGIN LICENSE BLOCK *****
  4.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  5.  *
  6.  * The contents of this file are subject to the Mozilla Public License Version
  7.  * 1.1 (the "License"); you may not use this file except in compliance with
  8.  * the License. You may obtain a copy of the License at
  9.  * http://www.mozilla.org/MPL/
  10.  *
  11.  * Software distributed under the License is distributed on an "AS IS" basis,
  12.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  13.  * for the specific language governing rights and limitations under the
  14.  * License.
  15.  *
  16.  * The Original Code is mozilla.org code.
  17.  *
  18.  * The Initial Developer of the Original Code is
  19.  * Netscape Communications Corporation.
  20.  * Portions created by the Initial Developer are Copyright (C) 1998
  21.  * the Initial Developer. All Rights Reserved.
  22.  *
  23.  * Contributor(s):
  24.  *   Akhil Arora <akhil.arora@sun.com>
  25.  *   Tomi Leppikangas <Tomi.Leppikangas@oulu.fi>
  26.  *   Darin Fisher <darin@meer.net>
  27.  *
  28.  * Alternatively, the contents of this file may be used under the terms of
  29.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  30.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  31.  * in which case the provisions of the GPL or the LGPL are applicable instead
  32.  * of those above. If you wish to allow use of your version of this file only
  33.  * under the terms of either the GPL or the LGPL, and not to allow others to
  34.  * use your version of this file under the terms of the MPL, indicate your
  35.  * decision by deleting the provisions above and replace them with the notice
  36.  * and other provisions required by the GPL or the LGPL. If you do not delete
  37.  * the provisions above, a recipient may use your version of this file under
  38.  * the terms of any one of the MPL, the GPL or the LGPL.
  39.  *
  40.  * ***** END LICENSE BLOCK ***** */
  41.  
  42. /*
  43.    Script for Proxy Auto Config in the new world order.
  44.        - Gagan Saksena 04/24/00 
  45. */
  46.  
  47. const kDNS_CONTRACTID = "@mozilla.org/network/dns-service;1";
  48. const kPAC_CONTRACTID = "@mozilla.org/network/proxy-auto-config;1";
  49. const kPAC_CID = Components.ID("{63ac8c66-1dd2-11b2-b070-84d00d3eaece}");
  50.  
  51. const nsISupports        = Components.interfaces.nsISupports;
  52. const nsIProxyAutoConfig = Components.interfaces.nsIProxyAutoConfig;
  53. const nsIDNSService      = Components.interfaces.nsIDNSService;
  54.  
  55. // implementor of nsIProxyAutoConfig
  56. function nsProxyAutoConfig() {};
  57.  
  58. nsProxyAutoConfig.prototype = {
  59.     // sandbox in which we eval loaded autoconfig js file
  60.     _sandBox: null, 
  61.  
  62.     QueryInterface: function(iid) {
  63.         if (iid.Equals(nsIProxyAutoConfig) ||
  64.             iid.Equals(nsISupports))
  65.             return this;
  66.         throw Components.results.NS_ERROR_NO_INTERFACE;
  67.     },
  68.  
  69.     init: function(pacURI, pacText) {
  70.         // remove PAC configuration if requested
  71.         if (pacURI == "" || pacText == "") {
  72.             this._sandBox = null;
  73.             return;
  74.         }
  75.  
  76.         // allocate a fresh Sandbox to clear global scope for new PAC script
  77.         this._sandBox = new Components.utils.Sandbox(pacURI);
  78.         Components.utils.evalInSandbox(pacUtils, this._sandBox);
  79.  
  80.         // add predefined functions to pac
  81.         this._sandBox.importFunction(myIpAddress);
  82.         this._sandBox.importFunction(dnsResolve);
  83.         this._sandBox.importFunction(proxyAlert, "alert");
  84.  
  85.         // evaluate loaded js file
  86.         Components.utils.evalInSandbox(pacText, this._sandBox);
  87.  
  88.         // We can no longer trust this._sandBox. Touching it directly can
  89.         // cause all sorts of pain, so wrap it in an XPCSafeJSObjectWrapper
  90.         // and do all of our work through there.
  91.         this._sandBox = new XPCSafeJSObjectWrapper(this._sandBox);
  92.     },
  93.  
  94.     getProxyForURI: function(testURI, testHost) {
  95.         if (!("FindProxyForURL" in this._sandBox))
  96.             return null;
  97.  
  98.         // Call the original function
  99.         var rval = this._sandBox.FindProxyForURL(testURI, testHost);
  100.         return rval;
  101.     }
  102. }
  103.  
  104. function proxyAlert(msg) {
  105.     // Ensure that we have a string.
  106.     if (typeof msg != "string")
  107.         msg = new XPCSafeJSObjectWrapper(msg).toString();
  108.  
  109.     try {
  110.         // It would appear that the console service is threadsafe.
  111.         var cns = Components.classes["@mozilla.org/consoleservice;1"]
  112.                             .getService(Components.interfaces.nsIConsoleService);
  113.         cns.logStringMessage("PAC-alert: "+msg);
  114.     } catch (e) {
  115.         dump("PAC: proxyAlert ERROR: "+e+"\n");
  116.     }
  117. }
  118.  
  119. // wrapper for getting local IP address called by PAC file
  120. function myIpAddress() {
  121.     try {
  122.         return dns.resolve(dns.myHostName, 0).getNextAddrAsString();
  123.     } catch (e) {
  124.         return '127.0.0.1';
  125.     }
  126. }
  127.  
  128. // wrapper for resolving hostnames called by PAC file
  129. function dnsResolve(host) {
  130.     if (typeof host != "string")
  131.         host = new XPCSafeJSObjectWrapper(host).toString();
  132.  
  133.     try {
  134.         return dns.resolve(host, 0).getNextAddrAsString();
  135.     } catch (e) {
  136.         return null;
  137.     }
  138. }
  139.  
  140. var pacModule = new Object();
  141.  
  142. pacModule.registerSelf =
  143.     function (compMgr, fileSpec, location, type) {
  144.         compMgr = compMgr.QueryInterface(Components.interfaces.nsIComponentRegistrar);
  145.         compMgr.registerFactoryLocation(kPAC_CID,
  146.                                         "nsProxyAutoConfig",
  147.                                         kPAC_CONTRACTID,
  148.                                         fileSpec, 
  149.                                         location, 
  150.                                         type);
  151.     }
  152.  
  153. pacModule.getClassObject =
  154. function (compMgr, cid, iid) {
  155.         if (!cid.equals(kPAC_CID))
  156.             throw Components.results.NS_ERROR_NO_INTERFACE;
  157.  
  158.         if (!iid.equals(Components.interfaces.nsIFactory))
  159.             throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  160.  
  161.         return pacFactory;
  162.     }
  163.  
  164. pacModule.canUnload =
  165.     function (compMgr) {
  166.         return true;
  167.     }
  168.  
  169. var pacFactory = new Object();
  170. pacFactory.createInstance =
  171.     function (outer, iid) {
  172.         if (outer != null)
  173.             throw Components.results.NS_ERROR_NO_AGGREGATION;
  174.  
  175.         if (!iid.equals(nsIProxyAutoConfig) &&
  176.             !iid.equals(Components.interfaces.nsISupports)) {
  177.             throw Components.results.NS_ERROR_NO_INTERFACE;
  178.         }
  179.         return pac;
  180.     }
  181.  
  182. function NSGetModule(compMgr, fileSpec) {
  183.     return pacModule;
  184. }
  185.  
  186. var pac = new nsProxyAutoConfig() ;
  187. var dns = Components.classes[kDNS_CONTRACTID].getService(nsIDNSService);
  188.  
  189. var pacUtils = 
  190. "function dnsDomainIs(host, domain) {\n" +
  191. "    return (host.length >= domain.length &&\n" +
  192. "            host.substring(host.length - domain.length) == domain);\n" +
  193. "}\n" +
  194.  
  195. "function dnsDomainLevels(host) {\n" +
  196. "    return host.split('.').length-1;\n" +
  197. "}\n" +
  198.  
  199. "function convert_addr(ipchars) {\n"+
  200. "    var bytes = ipchars.split('.');\n"+
  201. "    var result = ((bytes[0] & 0xff) << 24) |\n"+
  202. "                 ((bytes[1] & 0xff) << 16) |\n"+
  203. "                 ((bytes[2] & 0xff) <<  8) |\n"+
  204. "                  (bytes[3] & 0xff);\n"+
  205. "    return result;\n"+
  206. "}\n"+
  207.  
  208. "function isInNet(ipaddr, pattern, maskstr) {\n"+
  209. "    var test = /^(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})$/(ipaddr);\n"+
  210. "    if (test == null) {\n"+
  211. "        ipaddr = dnsResolve(ipaddr);\n"+
  212. "        if (ipaddr == null)\n"+
  213. "            return false;\n"+
  214. "    } else if (test[1] > 255 || test[2] > 255 || \n"+
  215. "               test[3] > 255 || test[4] > 255) {\n"+
  216. "        return false;    // not an IP address\n"+
  217. "    }\n"+
  218. "    var host = convert_addr(ipaddr);\n"+
  219. "    var pat  = convert_addr(pattern);\n"+
  220. "    var mask = convert_addr(maskstr);\n"+
  221. "    return ((host & mask) == (pat & mask));\n"+
  222. "    \n"+
  223. "}\n"+
  224.  
  225. "function isPlainHostName(host) {\n" +
  226. "    return (host.search('\\\\.') == -1);\n" +
  227. "}\n" +
  228.  
  229. "function isResolvable(host) {\n" +
  230. "    var ip = dnsResolve(host);\n" +
  231. "    return (ip != null);\n" +
  232. "}\n" +
  233.  
  234. "function localHostOrDomainIs(host, hostdom) {\n" +
  235. "    return (host == hostdom) ||\n" +
  236. "           (hostdom.lastIndexOf(host + '.', 0) == 0);\n" +
  237. "}\n" +
  238.  
  239. "function shExpMatch(url, pattern) {\n" +
  240. "   pattern = pattern.replace(/\\./g, '\\\\.');\n" +
  241. "   pattern = pattern.replace(/\\*/g, '.*');\n" +
  242. "   pattern = pattern.replace(/\\?/g, '.');\n" +
  243. "   var newRe = new RegExp('^'+pattern+'$');\n" +
  244. "   return newRe.test(url);\n" +
  245. "}\n" +
  246.  
  247. "var wdays = new Array('SUN', 'MON', 'TUE', 'WED', 'THU', 'FRI', 'SAT');\n" +
  248.  
  249. "var monthes = new Array('JAN', 'FEB', 'MAR', 'APR', 'MAY', 'JUN', 'JUL', 'AUG', 'SEP', 'OCT', 'NOV', 'DEC');\n"+
  250.  
  251. "function weekdayRange() {\n" +
  252. "    function getDay(weekday) {\n" +
  253. "        for (var i = 0; i < 6; i++) {\n" +
  254. "            if (weekday == wdays[i]) \n" +
  255. "                return i;\n" +
  256. "        }\n" +
  257. "        return -1;\n" +
  258. "    }\n" +
  259. "    var date = new Date();\n" +
  260. "    var argc = arguments.length;\n" +
  261. "    var wday;\n" +
  262. "    if (argc < 1)\n" +
  263. "        return false;\n" +
  264. "    if (arguments[argc - 1] == 'GMT') {\n" +
  265. "        argc--;\n" +
  266. "        wday = date.getUTCDay();\n" +
  267. "    } else {\n" +
  268. "        wday = date.getDay();\n" +
  269. "    }\n" +
  270. "    var wd1 = getDay(arguments[0]);\n" +
  271. "    var wd2 = (argc == 2) ? getDay(arguments[1]) : wd1;\n" +
  272. "    return (wd1 == -1 || wd2 == -1) ? false\n" +
  273. "                                    : (wd1 <= wday && wday <= wd2);\n" +
  274. "}\n" +
  275.  
  276. "function dateRange() {\n" +
  277. "    function getMonth(name) {\n" +
  278. "        for (var i = 0; i < 6; i++) {\n" +
  279. "            if (name == monthes[i])\n" +
  280. "                return i;\n" +
  281. "        }\n" +
  282. "        return -1;\n" +
  283. "    }\n" +
  284. "    var date = new Date();\n" +
  285. "    var argc = arguments.length;\n" +
  286. "    if (argc < 1) {\n" +
  287. "        return false;\n" +
  288. "    }\n" +
  289. "    var isGMT = (arguments[argc - 1] == 'GMT');\n" +
  290. "\n" +
  291. "    if (isGMT) {\n" +
  292. "        argc--;\n" +
  293. "    }\n" +
  294. "    // function will work even without explict handling of this case\n" +
  295. "    if (argc == 1) {\n" +
  296. "        var tmp = parseInt(arguments[0]);\n" +
  297. "        if (isNaN(tmp)) {\n" +
  298. "            return ((isGMT ? date.getUTCMonth() : date.getMonth()) ==\n" +
  299. "getMonth(arguments[0]));\n" +
  300. "        } else if (tmp < 32) {\n" +
  301. "            return ((isGMT ? date.getUTCDate() : date.getDate()) == tmp);\n" +
  302. "        } else { \n" +
  303. "            return ((isGMT ? date.getUTCFullYear() : date.getFullYear()) ==\n" +
  304. "tmp);\n" +
  305. "        }\n" +
  306. "    }\n" +
  307. "    var year = date.getFullYear();\n" +
  308. "    var date1, date2;\n" +
  309. "    date1 = new Date(year,  0,  1,  0,  0,  0);\n" +
  310. "    date2 = new Date(year, 11, 31, 23, 59, 59);\n" +
  311. "    var adjustMonth = false;\n" +
  312. "    for (var i = 0; i < (argc >> 1); i++) {\n" +
  313. "        var tmp = parseInt(arguments[i]);\n" +
  314. "        if (isNaN(tmp)) {\n" +
  315. "            var mon = getMonth(arguments[i]);\n" +
  316. "            date1.setMonth(mon);\n" +
  317. "        } else if (tmp < 32) {\n" +
  318. "            adjustMonth = (argc <= 2);\n" +
  319. "            date1.setDate(tmp);\n" +
  320. "        } else {\n" +
  321. "            date1.setFullYear(tmp);\n" +
  322. "        }\n" +
  323. "    }\n" +
  324. "    for (var i = (argc >> 1); i < argc; i++) {\n" +
  325. "        var tmp = parseInt(arguments[i]);\n" +
  326. "        if (isNaN(tmp)) {\n" +
  327. "            var mon = getMonth(arguments[i]);\n" +
  328. "            date2.setMonth(mon);\n" +
  329. "        } else if (tmp < 32) {\n" +
  330. "            date2.setDate(tmp);\n" +
  331. "        } else {\n" +
  332. "            date2.setFullYear(tmp);\n" +
  333. "        }\n" +
  334. "    }\n" +
  335. "    if (adjustMonth) {\n" +
  336. "        date1.setMonth(date.getMonth());\n" +
  337. "        date2.setMonth(date.getMonth());\n" +
  338. "    }\n" +
  339. "    if (isGMT) {\n" +
  340. "    var tmp = date;\n" +
  341. "        tmp.setFullYear(date.getUTCFullYear());\n" +
  342. "        tmp.setMonth(date.getUTCMonth());\n" +
  343. "        tmp.setDate(date.getUTCDate());\n" +
  344. "        tmp.setHours(date.getUTCHours());\n" +
  345. "        tmp.setMinutes(date.getUTCMinutes());\n" +
  346. "        tmp.setSeconds(date.getUTCSeconds());\n" +
  347. "        date = tmp;\n" +
  348. "    }\n" +
  349. "    return ((date1 <= date) && (date <= date2));\n" +
  350. "}\n" +
  351.  
  352. "function timeRange() {\n" +
  353. "    var argc = arguments.length;\n" +
  354. "    var date = new Date();\n" +
  355. "    var isGMT= false;\n"+
  356. "\n" +
  357. "    if (argc < 1) {\n" +
  358. "        return false;\n" +
  359. "    }\n" +
  360. "    if (arguments[argc - 1] == 'GMT') {\n" +
  361. "        isGMT = true;\n" +
  362. "        argc--;\n" +
  363. "    }\n" +
  364. "\n" +
  365. "    var hour = isGMT ? date.getUTCHours() : date.getHours();\n" +
  366. "    var date1, date2;\n" +
  367. "    date1 = new Date();\n" +
  368. "    date2 = new Date();\n" +
  369. "\n" +
  370. "    if (argc == 1) {\n" +
  371. "        return (hour == arguments[0]);\n" +
  372. "    } else if (argc == 2) {\n" +
  373. "        return ((arguments[0] <= hour) && (hour <= arguments[1]));\n" +
  374. "    } else {\n" +
  375. "        switch (argc) {\n" +
  376. "        case 6:\n" +
  377. "            date1.setSeconds(arguments[2]);\n" +
  378. "            date2.setSeconds(arguments[5]);\n" +
  379. "        case 4:\n" +
  380. "            var middle = argc >> 1;\n" +
  381. "            date1.setHours(arguments[0]);\n" +
  382. "            date1.setMinutes(arguments[1]);\n" +
  383. "            date2.setHours(arguments[middle]);\n" +
  384. "            date2.setMinutes(arguments[middle + 1]);\n" +
  385. "            if (middle == 2) {\n" +
  386. "                date2.setSeconds(59);\n" +
  387. "            }\n" +
  388. "            break;\n" +
  389. "        default:\n" +
  390. "          throw 'timeRange: bad number of arguments'\n" +
  391. "        }\n" +
  392. "    }\n" +
  393. "\n" +
  394. "    if (isGMT) {\n" +
  395. "        date.setFullYear(date.getUTCFullYear());\n" +
  396. "        date.setMonth(date.getUTCMonth());\n" +
  397. "        date.setDate(date.getUTCDate());\n" +
  398. "        date.setHours(date.getUTCHours());\n" +
  399. "        date.setMinutes(date.getUTCMinutes());\n" +
  400. "        date.setSeconds(date.getUTCSeconds());\n" +
  401. "    }\n" +
  402. "    return ((date1 <= date) && (date <= date2));\n" +
  403. "}\n"
  404.  
  405.